home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / dfue / elcheapofax / faxcmd / libfax / rcs / msgs.h,v < prev    next >
Text File  |  1995-03-09  |  2KB  |  160 lines

  1. head    1.3;
  2. access;
  3. symbols
  4.     OCT93:1.3;
  5. locks;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.3
  10. date    93.09.18.20.16.23;    author Rhialto;    state Exp;
  11. branches;
  12. next    1.2;
  13.  
  14. 1.2
  15. date    93.06.11.16.15.25;    author Rhialto;    state Exp;
  16. branches;
  17. next    1.1;
  18.  
  19. 1.1
  20. date    93.06.11.15.19.27;    author Rhialto;    state Exp;
  21. branches;
  22. next    ;
  23.  
  24.  
  25. desc
  26. @Prototypes for msgs.c
  27. @
  28.  
  29.  
  30. 1.3
  31. log
  32. @Unconditional prototypes.
  33. @
  34. text
  35. @/* $Id: msgs.h,v 1.2 1993/06/11 16:15:25 Rhialto Exp $
  36.  * $Log: msgs.h,v $
  37.  * Revision 1.2  1993/06/11  16:15:25  Rhialto
  38.  * First real RCS checkin
  39.  *
  40.  */
  41. /*
  42.   msgs.h
  43.  
  44.   (c) Copyright 1991 by David M. Siegel.
  45.       All rights reserved.
  46.  
  47.   %W% %G% %U%
  48. */
  49.  
  50. #ifndef in_libfax_msgs_h
  51. #define in_libfax_msgs_h 1
  52.  
  53. /*
  54.   Prototypes:
  55. */
  56.  
  57. char *hayes_result_msg(int result);
  58. char *faxmodem_result_msg(FaxModem *f); 
  59. void faxmodem_print_id_strings(FaxModem *f, FILE *fp);
  60. char *t30_vr_string(T30params *p);
  61. char *t30_br_string(T30params *p);
  62. char *t30_wd_string(T30params *p); 
  63. char *t30_ln_string(T30params *p);
  64. char *t30_df_string(T30params *p);
  65. char *t30_ec_string(T30params *p);
  66. char *t30_bf_string(T30params *p);
  67. char *t30_st_string(T30params *p);
  68.  
  69. #endif
  70. @
  71.  
  72.  
  73. 1.2
  74. log
  75. @First real RCS checkin
  76. @
  77. text
  78. @d1 5
  79. a5 2
  80. /* $Id$
  81.  * $Log$
  82. d23 11
  83. a33 66
  84. char *hayes_result_msg(
  85. #ifdef _PROTO
  86.      int result
  87. #endif
  88. );
  89.  
  90. char *faxmodem_result_msg(
  91. #ifdef _PROTO
  92.      FaxModem *f
  93. #endif
  94. );
  95.  
  96. void faxmodem_print_id_strings(
  97. #ifdef _PROTO
  98.      FaxModem *f,
  99.      FILE *fp
  100. #endif
  101. );
  102.  
  103. char *t30_vr_string(
  104. #ifdef _PROTO
  105.      T30params *p
  106. #endif
  107. );
  108.  
  109. char *t30_br_string(
  110. #ifdef _PROTO
  111.      T30params *p
  112. #endif
  113. );
  114.  
  115. char *t30_wd_string(
  116. #ifdef _PROTO
  117.      T30params *p
  118. #endif
  119. );
  120.  
  121. char *t30_ln_string(
  122. #ifdef _PROTO
  123.      T30params *p
  124. #endif
  125. );
  126.  
  127. char *t30_df_string(
  128. #ifdef _PROTO
  129.      T30params *p
  130. #endif
  131. );
  132.  
  133. char *t30_ec_string(
  134. #ifdef _PROTO
  135.      T30params *p
  136. #endif
  137. );
  138.  
  139. char *t30_bf_string(
  140. #ifdef _PROTO
  141.      T30params *p
  142. #endif
  143. );
  144.  
  145. char *t30_st_string(
  146. #ifdef _PROTO
  147.      T30params *p
  148. #endif
  149. );
  150. @
  151.  
  152.  
  153. 1.1
  154. log
  155. @Initial revision
  156. @
  157. text
  158. @d1 3
  159. @
  160.